home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / demos / devel3.exe / DEMO3.MAK < prev    next >
Text File  |  1992-06-05  |  978b  |  37 lines

  1. # Makefile for demo program
  2.  
  3. # Part of the REND386 package by Bernie Roehl and Dave Stampe
  4. # For details, send email to broehl@sunee.uwaterloo.ca
  5. # or dstampe@sunee.uwaterloo.ca
  6.  
  7. demo3.exe: demo3.obj color256.obj pcxmodey.obj demo.lib
  8.     tcc -ml demo3.obj color256.obj pcxmodey.obj demo.lib sega.lib userint.lib rend386.lib blit256.lib
  9.  
  10. demo3.obj: demo3.c rend386.h userint.h plg.h segio.h
  11.     tcc -c -ml demo3
  12.  
  13. color16.obj: color16.c rend386.h
  14.     tcc -c -ml color16
  15.  
  16. color256.obj: color256.c rend386.h
  17.     tcc -c -ml color256
  18.  
  19. demo.lib: stereov.obj mathinit.obj pointer.obj render.obj plg.obj segio.obj pcxmodey.obj
  20.     del demo.lib
  21.     tlib demo +stereov +mathinit +pointer +render +plg +segio +pcxmodey
  22.  
  23. render.obj: render.c
  24.     tcc -c -ml render
  25.  
  26. pointer.obj: pointer.c pointer.h
  27.     tcc -c -ml pointer
  28.  
  29. segio.obj: segio.c rend386.h plg.h segio.h
  30.     tcc -c -ml segio
  31.  
  32. plg.obj: plg.c rend386.h plg.h
  33.     tcc -c -ml plg
  34.  
  35. pcxmodey.obj: pcxmodey.c
  36.     tcc -c -ml pcxmodey
  37.